home *** CD-ROM | disk | FTP | other *** search
/ PC Graphics Unleashed / PC Graphics Unleashed.iso / ch18 / rtrace / 3ds2scn.bat < prev    next >
DOS Batch File  |  1994-01-05  |  302b  |  16 lines

  1. @echo off
  2. set name=%0
  3. if "%1" == "" goto params
  4. if not "%2" == "" goto params
  5. if not exist %1 goto error1
  6. tr.exe ":" " " <%1|gawk.exe -f 3ds2scn.awk
  7. goto end
  8. :params
  9. echo %name%: usage is "%name% {3ds_file} [>scn_file]"
  10. goto end
  11. :error1
  12. echo %name%: %1 not found
  13. goto end
  14. :end
  15. set name=
  16.